Security News
JSR Working Group Kicks Off with Ambitious Roadmap and Plans for Open Governance
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
Wraps nodejs built-in modules and browser fetch into one function
Can be used in browser and in node.js.
npm install micro-ftch
const fetch = require('micro-ftch');
fetch('https://google.com').then(...)
The list of options that can be supplied as second argument to fetch(url, opts):
export type FETCH_OPT = {
method?: string;
type?: 'text' | 'json' | 'bytes'; // Response encoding (auto-detect if empty)
redirect: boolean; // Follow redirects
expectStatusCode?: number | false; // Expect this status code
headers: Record<string, string>;
data?: object; // POST/PUT/DELETE request data
full: boolean; // Return full request {headers, status, body}
keepAlive: boolean; // Enable keep-alive (node only)
cors: boolean; // Allow CORS safe-listed headers (browser-only)
referrer: boolean; // Send referrer (browser-only)
sslAllowSelfSigned: boolean; // Allow self-signed ssl certs (node only)
sslPinnedCertificates?: string[]; // Verify fingerprint of certificate (node only)
_redirectCount: number;
};
MIT License (c) 2020, Paul Miller (https://paulmillr.com)
FAQs
Wrappers for built-in fetch() enabling killswitch, logging, concurrency limit and other features
The npm package micro-ftch receives a total of 356,148 weekly downloads. As such, micro-ftch popularity was classified as popular.
We found that micro-ftch demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
Security News
Research
An advanced npm supply chain attack is leveraging Ethereum smart contracts for decentralized, persistent malware control, evading traditional defenses.
Security News
Research
Attackers are impersonating Sindre Sorhus on npm with a fake 'chalk-node' package containing a malicious backdoor to compromise developers' projects.